Vue Get Domain name – To get the current domain name of a webpage in Vue.js, you can simply use the window.location.hostname
property. This property returns the domain name of the current page as a string. You can access this property directly within a Vue.js component or within a method of the Vue instance. Using this property, you can easily retrieve the domain name of the current page and use it for various purposes, such as setting dynamic URLs or generating links. This approach does not require any additional packages or libraries and is a simple and effective way to access the current domain name in Vue.js.
Vue Get Domain name Syntax:
this.currentDomain ='Current Doamin: '+ window.location.hostname;
How can you retrieve the domain name in Vue js?
The code you provided defines a Vue.js application with a data property called currentDomain
which is initially an empty string. The myFunction
method is used to set the value of currentDomain
to a string that includes the current domain name.
To retrieve the domain name in Vue.js, the code uses the window.location.hostname
property which returns the domain name of the current web page. The myFunction
method sets the value of currentDomain
to the current domain name, prefixed with the string “Current Domain: “.
How can you retrieve the domain name in Vue js?
he code you provided defines a Vue.js application with a data property called currentDomain
which is initially an empty string. The myFunction
method is used to set the value of currentDomain
to a string that includes the current domain name.
To retrieve the domain name in Vue.js, the code uses the window.location.hostname
property which returns the domain name of the current web page. The myFunction
method sets the value of currentDomain
to the current domain name, prefixed with the string “Current Domain: “.
Vue Js Get Doamin name from url | Example
<div id="app">
<button @click="myFunction">Get DomainName</button>
<p>{{currentDomain}}</p>
</div>
<script type="module">
import { createApp } from 'vue'
createApp({
data()
{
return{
currentDomain:'',
}
},
methods:{
myFunction(){
this.currentDomain ='Current Doamin: '+ window.location.hostname;
},
}
}).mount('#app')
</script>